i wanted a version i could compile to a single exe
no external files

downfall is you cant call pictures from sparrow (you could from an outside server)

this is perfect if you are wanting to use sparrow for automating a remote/headless server


you have two opportunities to run code
before the Html
and after the Html




to add a page
1 create a www.xxxxx.ahk
2 edit www.ahk
3 make so you can call it with www.index.ahk


---create www.NewWebPage.ahk----



if (RunScriptBeforeHtml = 1)
{
put your code to run before html gets executed  
code that affects the html 
leave blank if not needed
}



html = 
(
put your web code here   
only use % when you are calling variables
you can not use (  or  )
)



if (RunScriptAtEnd = 1)
{
put your code to execute after the page has completed  
for running a function on the server
leave blank if not needed
}





---www.ahk---


add your web page to www.ahk

else if (Request = "NewWebPage.html")
{
#IncludeAgain www.NewWebPage.ahk
}


above "www.FileNotFound.ahk"






compile.bat is just there if you want to use it


